CNT243-MIB DEFINITIONS ::= BEGIN

        IMPORTS
                MODULE-IDENTITY, OBJECT-TYPE
                        FROM SNMPv2-SMI
                cnt2Subagent
                        FROM CNT2-MIB;

        cnt2Atmf MODULE-IDENTITY
                LAST-UPDATED "0301290000Z"  -- Jan 29, 2003
                ORGANIZATION "Computer Network Technology Corporation"
                CONTACT-INFO "Computer Network Technology Technical Support
                              6000 Nathan Lane North
                              Plymouth, Minnesota  55442
                              support:  +1-763-268-6600
                                 free:  +1-800-762-8061
                                email:  customer_support@cnt.com"

                DESCRIPTION  "This defines the CNT ATM Forum MIB."

                REVISION     "0301290000Z"  -- Jan 29, 2003
                DESCRIPTION  "Version 1.2:
                              Updated to SMI V2.
                              Updated contact information."

                REVISION     "0001010000Z"  -- Jan 01, 2000
                DESCRIPTION  "Created."

                ::= { cnt2Subagent 3 }


        -- the ATM Forum Aggregation Table
        
        cnt2AtmfTable OBJECT-TYPE
                SYNTAX  SEQUENCE OF Cnt2AtmfEntry
                MAX-ACCESS  not-accessible
                STATUS  current
                DESCRIPTION
                        "A list of entries describing the mapping
                        of atm interfaces.  A specific atm object is
                        terminated with the slot number."
                ::= { cnt2Atmf 1 }

        cnt2AtmfEntry OBJECT-TYPE
                SYNTAX  Cnt2AtmfEntry
                MAX-ACCESS  not-accessible
                STATUS  current
                DESCRIPTION
                        "An individual atm port entry."
                INDEX { cnt2AtmfSlot, cnt2AtmfIndex }
                ::= { cnt2AtmfTable 1 }

        Cnt2AtmfEntry ::= SEQUENCE {
                cnt2AtmfSlot
                        INTEGER,
                cnt2AtmfIndex
                        INTEGER,
                cnt2AtmfPort
                        INTEGER
        }

        cnt2AtmfSlot OBJECT-TYPE
                SYNTAX  INTEGER (1..12)
                MAX-ACCESS  read-only
                STATUS  current
                DESCRIPTION
                        "The slot index for this atm port."
                ::= { cnt2AtmfEntry 1 }

        cnt2AtmfIndex OBJECT-TYPE
                SYNTAX  INTEGER (0..2147483647)
                MAX-ACCESS  read-only
                STATUS  current
                DESCRIPTION
                        "The local port index for this atm port."
                ::= { cnt2AtmfEntry 2 }

        cnt2AtmfPort OBJECT-TYPE
                SYNTAX  INTEGER (0..2147483647)
                MAX-ACCESS  read-only
                STATUS  current
                DESCRIPTION
                        "The global port index for this atm port."
                ::= { cnt2AtmfEntry 3 }

        END